recent manager: Drop an unused field
authorMatthias Clasen <mclasen@redhat.com>
Thu, 30 Nov 2017 12:03:20 +0000 (07:03 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 30 Nov 2017 12:03:20 +0000 (07:03 -0500)
gtk/gtkrecentmanager.c

index 6ebebf3ea96fbbaa13a77084658d1b32657e64e9..b241ba251fe5ef9a36524347de5296ec1df262e5 100644 (file)
 #include "gtkrecentmanager.h"
 #include "gtkintl.h"
 #include "gtksettings.h"
-#include "gtkicontheme.h"
 #include "gtktypebuiltins.h"
 #include "gtkprivate.h"
 #include "gtkmarshalers.h"
@@ -160,8 +159,6 @@ struct _GtkRecentInfo
 
   gboolean is_private;
 
-  GdkPixbuf *icon;
-
   gint ref_count;
 };
 
@@ -1548,9 +1545,6 @@ gtk_recent_info_free (GtkRecentInfo *recent_info)
 
   g_slist_free_full (recent_info->groups, g_free);
 
-  if (recent_info->icon)
-    g_object_unref (recent_info->icon);
-
   g_free (recent_info);
 }